home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9206.ARJ / 1006088A < prev    next >
Text File  |  1992-06-02  |  200b  |  16 lines

  1. /* LISTING 1 */
  2.  
  3. extern int g;
  4.  
  5. f1() 
  6. {
  7.     int i;
  8.     int *p, *q, *r;
  9.     int a[200], b[200] ,c[200];
  10.  
  11.     p = a; q = b; r = c;
  12.  
  13.     for( i=0; i<g; ++i )
  14.         *p++ = *q++ / *r++;
  15. }
  16.